home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / gcc263-src.lha / gcc-2.6.3 / config / clipper / xm-clix.h < prev   
C/C++ Source or Header  |  1993-06-26  |  927b  |  40 lines

  1. /* Config file for Clipper running Clix, system V. 3.2 clone  */
  2.  
  3.  
  4. /* #defines that need visibility everywhere.  */
  5. #define FALSE 0
  6. #define TRUE 1
  7.  
  8. /* target machine dependencies.
  9.    tm.h is a symbolic link to the actual target specific file.   */
  10.  
  11. #include "tm.h"
  12.  
  13. /* This describes the machine the compiler is hosted on.  */
  14. #define HOST_BITS_PER_CHAR 8
  15. #define HOST_BITS_PER_SHORT 16
  16. #define HOST_BITS_PER_INT 32
  17. #define HOST_BITS_PER_LONG 32
  18. #define HOST_BITS_PER_LONGLONG 64
  19.  
  20. /* This machine uses IEEE floats.  */
  21. /* #define HOST_FLOAT_FORMAT IEEE_FLOAT_FORMAT */
  22.  
  23. /* Arguments to use with `exit'.  */
  24. #define SUCCESS_EXIT_CODE 0
  25. #define FATAL_EXIT_CODE 33
  26.  
  27. /* isinf isn't there, but finite is. */
  28. #define isinf(x) (!finite(x))
  29.  
  30.  
  31. #define USG
  32.  
  33. #define bcopy(a,b,c) memcpy (b,a,c)
  34. #define bzero(a,b) memset (a,0,b)
  35. #define bcmp(a,b,c) memcmp (a,b,c)
  36. #define index strchr
  37. #define rindex strrchr
  38.  
  39. #define TARGET_MEM_FUNCTIONS
  40.